HomeScreen

fun HomeScreen(modifier: Modifier = Modifier, openDrawer: () -> Unit, onNavigateToMoodEvaluation: () -> Unit, onNavigateToJournal: () -> Unit, onNavigateToChatbot: () -> Unit, onNavigateToAnalytics: () -> Unit)

Composable for the Home screen, which serves as the main dashboard. It includes navigation options to different sections of the app such as mood evaluation, journaling, chatbot, and analytics.

Parameters

modifier

Modifier to be applied to the composable.

openDrawer

A lambda function to open the navigation drawer.

onNavigateToMoodEvaluation

A lambda function for navigating to the mood evaluation screen.

onNavigateToJournal

A lambda function for navigating to the journal screen.

onNavigateToChatbot

A lambda function for navigating to the chatbot screen.

onNavigateToAnalytics

A lambda function for navigating to the analytics screen.